04. Solutions: Window Functions 1
Creating a Running Total Using Window Functions
SELECT standard_amt_usd,
SUM(standard_amt_usd) OVER (ORDER BY occurred_at) AS running_total
FROM orders
Code
If you need a code on the https://github.com/udacity.